﻿#!/bin/sh
# Próba pobrania strony. Uzyskano stronę rejestracyjną.
curl -o curl-normal.html http://www.linux-mag.com/id/744/

# Próba pobrania strony jako serwis Google. Uzyskano treść artykułu.
curl -o curl-google.html -A \
'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)' \
http://www.linux-mag.com/id/744/
